net/http.http2ClientConn.goAway (field)

9 uses

	net/http (current package)
		h2_bundle.go#L6987: 	goAway          *http2GoAwayFrame             // if non-nil, the GoAwayFrame we received
		h2_bundle.go#L7468: 	old := cc.goAway
		h2_bundle.go#L7469: 	cc.goAway = f
		h2_bundle.go#L7476: 		cc.goAway.ErrCode = old.ErrCode
		h2_bundle.go#L7556: 		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
		h2_bundle.go#L7592: 	st.canTakeNewRequest = cc.goAway == nil && !cc.closed && !cc.closing && maxConcurrentOkay &&
		h2_bundle.go#L8755: 	if cc.goAway != nil && http2isEOFOrNetReadError(err) {
		h2_bundle.go#L8757: 			LastStreamID: cc.goAway.LastStreamID,
		h2_bundle.go#L8758: 			ErrCode:      cc.goAway.ErrCode,